home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 October / CHIP Turkiye Ekim 2000.iso / prog / share / 54 / Windows / inf / Atclient.inf next >
Windows Setup INFormation  |  2000-02-03  |  3KB  |  112 lines

  1. ;ATClient.inf for PC MACLAN for Windows 2000
  2. ;
  3. ;Copyright 2000, Miramar Systems, Inc.
  4.  
  5. [version]
  6. signature="$Windows NT$"
  7. Class=NetClient
  8. ClassGUID={4D36E973-E325-11CE-BFC1-08002BE10318}  ; NetClient
  9. Provider=%Miramar%
  10.  
  11. [Manufacturer]
  12. %Miramar%=MIRAMAR
  13.  
  14. [MIRAMAR]
  15. %MiramarClient_Desc%     =   MiramarClient.ndi,   atfsd
  16.  
  17. ;
  18. ; Install Sections
  19. [MiramarClient.ndi]
  20. AddReg                  = MiramarClient.ndi.AddReg, MiramarClient.AddReg
  21. Characteristics         = 0x80 ; NCF_HAS_UI
  22.  
  23. [MiramarClient.ndi.Remove]
  24. DelReg                  = MiramarClient.DelReg
  25.  
  26. ;
  27. ; Services Sections
  28. [MiramarClient.ndi.Services]
  29. AddService = atfsd,,            atfsd_Service_Inst,    atfsd_Evt
  30.  
  31. ;
  32. ; Remove services
  33. [MiramarClient.ndi.Remove.Services]
  34. DelService = atfsd
  35.  
  36. ;
  37. ; Service Install Sections
  38. [atfsd_Service_Inst]
  39. DisplayName         =   %atfsd_Desc%
  40. ServiceType         =   %SERVICE_FILE_SYSTEM_DRIVER%
  41. StartType        =   %SERVICE_AUTO_START%
  42. Group = Network
  43. ErrorControl        =   1
  44. ServiceBinary       =   %12%\atfsd.sys
  45. ;;Dependencies        =   atalk
  46. ;;StartName           =   atfsd
  47. AddReg              =   MiramarClient.atfsd.AddReg
  48.  
  49. ;
  50. ; Del Registry section
  51. [MiramarClient.DelReg]
  52. ;
  53.  
  54. ;
  55. ; Add Registry sections
  56. ;
  57.  
  58. [MiramarClient.ndi.AddReg]
  59. ;
  60. ; NDI install registry keys
  61. HKR,"Ndi",              "Service",,         "atfsd"
  62. HKR,"Ndi",              "HelpText",,        "%MiramarClient_HELP%"
  63. HKR,"Ndi\Interfaces",   "UpperRange",,      "winnet5"
  64. HKR,"Ndi\Interfaces",   "LowerRange",,      "atalk_ndis"
  65.  
  66. [MiramarClient.AddReg]
  67. ;
  68.  
  69. [MiramarClient.ndi.NetworkProvider]
  70. DeviceName = "Miramar AppleTalk Network"
  71.  
  72. [MiramarClient.atfsd.AddReg]
  73. HKR, "NetworkProvider", "Name", 0, "%NetproviderName%"
  74. HKR, "NetworkProvider", "ProviderPath", 0x20000, "%11%\atnp32.dll"
  75.  
  76. ;
  77. ; Event log registry stuff
  78. [atfsd_Evt]
  79. AddReg = atfsd_Evt_AddReg
  80.  
  81. [atfsd_Evt_AddReg]
  82. HKR,, EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netmsg.dll"
  83. HKR,, TypesSupported,   0x00010001, 0x00000007
  84.  
  85. [Strings]
  86. Miramar = "Miramar Systems, Inc."
  87. MiramarClient_Desc   = "Miramar Systems AppleTalk Client Services"
  88. atfsd_Desc = "Miramar AppleTalk File System Client"
  89. NetproviderName = "Miramar AppleTalk Network"
  90. MiramarClient_HELP = "The Miramar Systems Client enables you to connect to AppleShare servers and print to AppleTalk printers."
  91.  
  92. FLG_ADDREG_KEYONLY = 0x0010
  93. REG_MULTI_SZ = 0x10000
  94. REG_EXPAND_SZ = 0x20000
  95. REG_DWORD = 0x10001
  96. SERVICE_DEMAND_START = 3
  97. SERVICE_AUTO_START = 2
  98. SERVICE_WIN32_SHARE_PROCESS = 32
  99. SERVICE_FILE_SYSTEM_DRIVER = 2
  100. SERVICE_WIN32_OWN_PROCESS = 16
  101.  
  102. ; Characteristic flags
  103. NCF_VIRTUAL                 = 0x0001
  104. NCF_WRAPPER                 = 0x0002
  105. NCF_PHYSICAL                = 0x0004
  106. NCF_HIDDEN                  = 0x0008
  107. NCF_NO_SERVICE              = 0x0010
  108. NCF_NOT_USER_REMOVABLE      = 0x0020
  109. NCF_HAS_UI                  = 0x0080
  110. NCF_MODEM                   = 0x0100
  111.  
  112.